home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / man / cmds.fmt / crypt.man < prev    next >
Text File  |  1989-03-18  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4. CRYPT                     User Commands                     CRYPT
  5.  
  6.  
  7.  
  8. NNAAMMEE
  9.      crypt - encode/decode
  10.  
  11. SSYYNNOOPPSSIISS
  12.      ccrryypptt [ password ]
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      _C_r_y_p_t reads from the standard input and writes on the stan-
  16.      dard output.  The _p_a_s_s_w_o_r_d is a key that selects a particu-
  17.      lar transformation.  If no _p_a_s_s_w_o_r_d is given, _c_r_y_p_t demands
  18.      a key from the terminal and turns off printing while the key
  19.      is being typed in.  _C_r_y_p_t encrypts and decrypts with the
  20.      same key:
  21.  
  22.           crypt key <clear >cypher
  23.           crypt key <cypher | pr
  24.  
  25.      will print the clear.
  26.  
  27.      Files encrypted by _c_r_y_p_t are compatible with those treated
  28.      by the editor _e_d in encryption mode.
  29.  
  30.      The security of encrypted files depends on three factors:
  31.      the fundamental method must be hard to solve; direct search
  32.      of the key space must be infeasible; `sneak paths' by which
  33.      keys or cleartext can become visible must be minimized.
  34.  
  35.      _C_r_y_p_t implements a one-rotor machine designed along the
  36.      lines of the German Enigma, but with a 256-element rotor.
  37.      Methods of attack on such machines are known, but not
  38.      widely; moreover the amount of work required is likely to be
  39.      large.
  40.  
  41.      The transformation of a key into the internal settings of
  42.      the machine is deliberately designed to be expensive, i.e.
  43.      to take a substantial fraction of a second to compute.  How-
  44.      ever, if keys are restricted to (say) three lower-case
  45.      letters, then encrypted files can be read by expending only
  46.      a substantial fraction of five minutes of machine time.
  47.  
  48.      Since the key is an argument to the _c_r_y_p_t command, it is
  49.      potentially visible to users executing _p_s(1) or a deriva-
  50.      tive.  To minimize this possibility, _c_r_y_p_t takes care to
  51.      destroy any record of the key immediately upon entry.  No
  52.      doubt the choice of keys and key security are the most
  53.      vulnerable aspect of _c_r_y_p_t.
  54.  
  55. FFIILLEESS
  56.      /dev/tty for typed key
  57.  
  58. SSEEEE AALLSSOO
  59.      ed(1), crypt(3), makekey(8)
  60.  
  61.  
  62.  
  63. Sprite v1.0               July 14, 1987                         1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. CRYPT                     User Commands                     CRYPT
  71.  
  72.  
  73.  
  74. BBUUGGSS
  75.      There is no warranty of merchantability nor any warranty of
  76.      fitness for a particular purpose nor any other warranty,
  77.      either express or implied, as to the accuracy of the
  78.      enclosed materials or as to their suitability for any par-
  79.      ticular purpose.  Accordingly, Bell Telephone Laboratories
  80.      assumes no responsibility for their use by the recipient.
  81.      Further, Bell Laboratories assumes no obligation to furnish
  82.      any assistance of any kind whatsoever, or to furnish any
  83.      additional information or documentation.
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Sprite v1.0               July 14, 1987                         2
  130.  
  131.  
  132.  
  133.